Full
    open class FullKeyValuesCacheRepo<Key, Value>(    parentRepo: KeyValuesRepo<Key, Value>,     kvCache: FullKVCache<Key, List<Value>>,     scope: CoroutineScope = CoroutineScope(Dispatchers.Default)) : FullWriteKeyValuesCacheRepo<Key, Value> , KeyValuesRepo<Key, Value> , ReadKeyValuesRepo<Key, Value> 
Content copied to clipboard
Constructors
Link copied to clipboard
                fun <Key, Value> FullKeyValuesCacheRepo(    parentRepo: KeyValuesRepo<Key, Value>,     kvCache: FullKVCache<Key, List<Value>>,     scope: CoroutineScope = CoroutineScope(Dispatchers.Default))
Content copied to clipboard
Functions
Link copied to clipboard
                Link copied to clipboard
                open suspend override fun get(    k: Key,     pagination: Pagination,     reversed: Boolean): PaginationResult<Value>
Content copied to clipboard
Link copied to clipboard
                Link copied to clipboard
                open suspend override fun keys(pagination: Pagination, reversed: Boolean): PaginationResult<Key>
Content copied to clipboard
open suspend override fun keys(    v: Value,     pagination: Pagination,     reversed: Boolean): PaginationResult<Key>
Content copied to clipboard